.block.b_footer
{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 80px 0;
	align-items: center;
	gap: 60px;
	background: var(--Colors-Neutrals-Black, #000000);
	height: auto;
	position: relative;
	order: 0;

	.all-things-metal
	{
		width: 226px;
		padding-right: 3px;
		overflow: clip;
		position: relative;
		flex: 0 0 68px;
		object-fit: cover;
		order: 0;
	}

	.legal-nav
	{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 40px;
		position: relative;
		flex: 0 0 auto;
		width: 100%;
		order: 1;
	}

	.shared-link-01
	{
		text-decoration: none;
		color: #FFF;
		font-family: "instrument sans";
		font-style: normal;
		font-size: 18px;
		font-weight: 600;
		line-height: 20px /* 111% */;
		position: relative;
		flex: 0 0 auto;
		order: 0;
	}

	.tag-line
	{
		color: var(--Neutrals-Light-Gray, #DFDFDF);
		font-family: "instrument sans";
		font-style: normal;
		font-size: 16px;
		font-weight: 500;
		line-height: 24px /* 150% */;
		letter-spacing: 0.02em;
		text-align: center;
		position: relative;
		flex: 0 0 auto;
		width: 100%;
		order: 2;
	}


	/* Media Query for Desktop */
	@media (min-width: 1440px)
	{
		order: 0;

		.all-things-metal
		{
			order: 0;
		}

		.legal-nav
		{
			gap: 50px;
			flex-direction: row;
			order: 1;
		}

		.shared-link-01
		{
			order: 0;
		}

		.tag-line
		{
			order: 2;
		}

	}
}